body {
    background: #000c18 url('bg.gif');
    margin: 0;
    min-height: 100vh;

    background-repeat: repeat;
    background-size: 1050px;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
    font-family: sans-serif;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.content {
    background-color: #001e2fb7;
    color: white;

    padding: 30px;
    border-radius: 15px;

    border: 3px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    box-sizing: border-box;
}

.content h1 {
    margin: 10px 0;
    font-size: 2.5em;
}

.content h2 {
    margin-top: 0;
    color: #00d4ff;
}

.content img {
    width: 100px;
    margin-bottom: 10px;
}

.content p {
    line-height: 1.6;
    margin: 10px 0;
}

.content ul,
.content ol {
    text-align: left;
    line-height: 1.8;
    margin: 15px 0;
}

.content li {
    margin: 8px 0;
}

.rsvp-section {
    text-align: center;
}

.rsvp-button {
    background-color: #00d4ff;
    color: #000c18;
    border: none;
    padding: 15px 40px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.2s;
}

.rsvp-button:hover {
    background-color: #70e1ff;
}

.faq-item {
    margin: 15px 0;
    border: 2px solid #004a7c;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #002b49;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #003a62;
}

.faq-arrow {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.faq-answer {
    background-color: #001e2f;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    text-align: left;
    line-height: 1.6;
}

.faq-answer {
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item .faq-answer[style*="max-height"] {
    padding-top: 15px;
    padding-bottom: 15px;
}

.bottom {
    background: #001e2fb7;
    color: white;

    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

a {
    color: white;
}

.orphHand {
    margin: 0;
    position: fixed;
    top: -35px;
    left: 7.5px;
    z-index: 1000;

    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.orphHand img {
    width: 150px;
    height: 150px;
    display: block;

    transition: transform 0.2s ease;
}

.orphHand:hover img {
    transform: scale(1.1);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000c18;
}

::-webkit-scrollbar-thumb {
    background: #004a7c;
    border-radius: 6px;
    border: 3px solid #000c18;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}